home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / TGKI-109 / Games / agent_platformer.swf / scripts / DefineSprite_117 / frame_25 / PlaceObject2_115_145 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2010-11-09  |  496b  |  19 lines

  1. onClipEvent(enterFrame){
  2.    if(_rotation > 180)
  3.    {
  4.       _Y = _Y - spd * Math.cos(0.017453292519943295 * _rotation);
  5.       _X = _X + spd * Math.sin(0.017453292519943295 * _rotation);
  6.    }
  7.    else
  8.    {
  9.       _Y = _Y + spd * Math.cos(0.017453292519943295 * _rotation);
  10.       _X = _X - spd * Math.sin(0.017453292519943295 * _rotation);
  11.    }
  12.    this._alpha -= 2;
  13.    if(this._alpha < 0)
  14.    {
  15.       this.swapDepths(_root.getNextHighestDepth());
  16.       this.removeMovieClip();
  17.    }
  18. }
  19.